home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Sound & Vision 2
/
Hot Sound & Vision 2.img
/
install.bat
next >
Wrap
DOS Batch File
|
1994-09-09
|
2KB
|
51 lines
@echo off
cls
echo ╔══════════════════════════════════════════════╗
echo ║ Hot Sound & Vision II :: September 94 ║
echo ╚══════════════════════════════════════════════╝
ECHO.
if exist c:\hotsv2\catalog.ini goto error
ECHO This install program will create two directories on your Hard Disk :
ECHO C:\HOTSV2 - where the Catalog & various utilities are stored
ECHO C:\HOTSV2\TMP - where extracted files are (temporarily) stored
ECHO.
ECHO This install program will also copy all the files in \UTILS to C:\HOTSV2
ECHO These will take up approximately 1.7 megabytes (1700k) of disk space.
ECHO.
ECHO.
ECHO The files C:\HOTSV2\CATALOG.INI and C:\HOTSV2\READYRUN.TXT list all the
ECHO external Ascii/Hex/GIF/JPG/MOD/FLI/FLC/ANI/MPG Viewers and Players.
ECHO.
ECHO You can edit these two text files to suit your own preferences, or
ECHO leave them as the defaults.
ECHO.
ECHO Please remember that these, and all the software contained on this CDrom,
ECHO are Shareware, and may need a registration fee for continued use.
ECHO.
ECHO.
ECHO Press CTRL-C to exit now, or any key to continue
pause
md c:\hotsv2
md c:\hotsv2\tmp
copy \catalog\catalog.* c:\hotsv2
copy \catalog\readyrun.* c:\hotsv2
copy \catalog\verzeich.* c:\hotsv2
copy \utils\*.* c:\hotsv2
cd \catalog
catalog
cd \
goto bye
:error
ECHO This CD has already been installed to C:\HOTSV2 !!
ECHO Type 'MENU' to run instead.
ECHO.
goto finish
:bye
ECHO That was good, wasn't it ? See you again later !
ECHO Next time, just type 'MENU' to run.
ECHO.
:finish